home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr48 / mkmenu.zip / MAKELIB.BAT next >
DOS Batch File  |  1993-04-01  |  585b  |  27 lines

  1. @echo off
  2. echo Building library ...
  3. if not exist stringio.h goto abort
  4. if not exist stringio.c goto abort
  5. if not exist popmenu.h goto abort
  6. if not exist popmenu.c goto abort
  7. if not exist windows.h goto abort
  8. if not exist windows.c goto abort
  9. del menulib.lib
  10. tcc -mc -c popmenu
  11. tcc -mc -c stringio
  12. tcc -mc -c windows
  13. tlib menulib +popmenu.obj +stringio.obj +windows.obj
  14. del popmenu.obj
  15. del stringio.obj
  16. del windows.obj
  17. goto end
  18. :abort
  19. echo You must have the following files to build library:
  20. POPMENU.H
  21. POPMENU.C
  22. STRINGIO.H
  23. STRINGIO.C
  24. WINDOWS.H
  25. WINDOWS.C
  26. :end
  27.